home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- TCLUtilities.h
-
- Header for TCL Utilities library
-
- Copyright © 1991 Symantec Corporation. All rights reserved.
-
- ******************************************************************************/
-
- #pragma once /* TCL 1.1.2 DLP 12/16/91 */
-
- enum // mnemonic constants for SetAllocation flag
- {
- kAllocCantFail = FALSE,
- kAllocCanFail
- };
-
- void ErrorAlert( short error, long message);
- void *NewHandleCanFail( long size);
- void ResizeHandleCanFail( void* theHandle , long newSize);
- Boolean SetAllocation( Boolean canFail);
- void SetCriticalOperation( Boolean aCriticalOp);
- long cstrlen( char *s );
- pascal Boolean EqualMem( void *p1, void *p2, long n);
- void SetMinimumStack( long minSize);
-